home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 4342 < prev    next >
Encoding:
Text File  |  1996-08-06  |  3.8 KB  |  122 lines

  1. Path: sn.no!usenet
  2. From: larsit@sn.no (Lars-Inge Tonnessen)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: visual c++ 1.5 compiler not working in windows 95response to response
  5. Date: Mon, 29 Jan 1996 21:12:13 GMT
  6. Organization: SN Internett
  7. Message-ID: <4ejd4u$sde@hasle.sn.no>
  8. References: <4ducds$aei@ixnews6.ix.netcom.com> <4e3117$hvc@hasle.sn.no> <4e4eg7$j8d@cloner2.ix.netcom.com>
  9. NNTP-Posting-Host: hsund2-ppp2.oslo.net
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. rykk@ix.netcom.com(kendrick adams ) wrote:
  13.  
  14. >>please note that i edited out his instructions but not his comments.
  15.  
  16. >besides being rude and obnoxious this response was completely useless.
  17. >of course i have several volumes on programming c++ i have the pro
  18. >edition of msvc++ 1.52 it has three volumes(containing volumes within
  19. >volumes) and a start up guide and a cd rom.....  unfortunatly they all
  20. >assume previous c experience of which i have none... 
  21.  
  22. > so please just because someone comes out with a "stupid" question dont
  23. >assume they are a software pirate or are idiots.  and maybe if you calm
  24. >down you could give some useful advice..
  25.  
  26.  
  27. I am VERY SORRY if I have hurt your feelings.  I did not mean to hurt
  28. you, but you see that I have lost maaaany $ in software-piracy.  The
  29. information you are looking for is in chapter 1 in your Microsoft
  30. Visual Workbench User's Guide.  You can also find it on the CD-ROM in
  31. chapter 1.  Open your Books on-line and search for "quickwin".  
  32.  
  33. QuickWin applications support the Windows Clipboard, and you can use
  34. standard C functions to write to and read from a QuickWin
  35. application's windows, which behave as streams. functions that are
  36. QuickWin compatible are marked as QWIN in the compatibility section.
  37.  
  38. >besides being rude and obnoxious this response was completely useless.
  39.  
  40. HOW was it useless?  I guided you through EVERY step.  In case you
  41. lost it:
  42.  
  43. Microsoft Visual C++ 1.5x
  44. ******************************
  45. 1) Define a project.
  46. In your menu select: Project and New.
  47.  
  48. The New Project dialogue box appears.  Enter a project name.  "Hello" 
  49.  
  50. 2) Select Project Type:
  51. Make sure that "Use Microsoft Foundation Classes" check box is in
  52. position OFF.  Click on  "Project Type" and select
  53. "QuickWinApplication (.EXE)". And OK.
  54.  
  55. 3) Edit - HELLO.MAK appears.
  56. "Close"
  57.  
  58. 4) In the menu,  "File" and "New".
  59.  
  60. 5) Write your standard ANSI C++ program.
  61.  
  62. // Your code!!!!
  63. #include <iostream.h>
  64. void main()
  65. {
  66. cout << "hello world\n";
  67. }
  68.  
  69. 6) "File" and "Save As".
  70. Enter a File Name "Test.cpp" & Ok.
  71.  
  72. 7)  "Project" and "Edit"
  73. Click on "TEST.CPP" in the file list.  Click on "Add".  Now you should
  74. find "Test.cpp" under Files in project.
  75.  
  76. 8) "Close".
  77.  
  78. 9) "Project" and "Rebuild All".  If any questions appears, make sure
  79. it's  "YES".  
  80.  
  81. 9a) If you get any errors, you have to correct them now.
  82.  
  83. 10) "Project" and "EXECUTE  HELLO.EXE".
  84. If any questions appears.... "YES/OK".
  85.  
  86. 11) YOUR PROGRAM SHOULD BE RUNNING NOW!!!!  If it's not running, try
  87. to install Visual C++ once again.  Or try to configure the options.
  88.  
  89.  
  90. Please spesify where you don't get it right.
  91.  
  92. >unfortunatly they all assume previous c experience of which i have none...
  93.  
  94. If you have none experience with Visual C++ programming, I can
  95. recommend this book:
  96.  
  97. The Visual Guide To Visual C++
  98. by Nancy Nicolaisen
  99. VENTANA PRESS
  100. ISBN 1-56604-079-5
  101.  
  102. U.S. $29.95
  103. User level: Intermediate.
  104.  
  105. This book will help you getting started with real Windows programming.
  106.  
  107. > so please just because someone comes out with a "stupid" question don't
  108. >assume they are a software pirate or are idiots.  and maybe if you calm
  109. >down you could give some useful advice..
  110.  
  111. I am sure that you are NOT an idiot.  I just thought everyone read the
  112. Users Guide chapter 1.  Again I AM VERY SORRY!!!
  113.  
  114. No questions are stupid!!!  I am also sorry for the late response to
  115. your mail.  You see I am not everyday in the C++ conf.
  116.  
  117.  
  118. Lars-Inge Tonnessen
  119. larsit@sn.no
  120.  
  121.  
  122.